SPB Git forge

spb/immbot-ai

Public
1commits 1branches 0releases
1.5 MBsize
maindefault branch
20 days agolast push
TypeScript 98.3% CSS 0.9% Shell 0.7%
337 B · 10 lines tsx
Raw Blame History
1// Cahier d'erreurs du cours.2import { ErrorsApp } from "@/components/learning/errors-app";34export const metadata = { title: "Cahier d'erreurs" };56export default async function ErreursPage({ params }: { params: Promise<{ course: string }> }) {7  const { course } = await params;8  return <ErrorsApp course={course.toLowerCase()} />;9}10